<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output encoding="ISO-8859-1"/>

    <xsl:template match="/PLANETES">
        <HTML>
        .
        .
        .
        </HTML>
    </xsl:template>
    
    <xsl:template match="PLANETE">
       <TR>
          <TD><xsl:value-of select="NOM"/></TD>
          <TD><xsl:apply-templates select="MASSE"/></TD>
          <TD><xsl:apply-templates select="RAYON"/></TD>
          <TD><xsl:apply-templates select="JOUR"/></TD>
       </TR>
   </xsl:template>
    
    <xsl:template match="MASSE">
        <xsl:value-of select="concat(.,  , @UNITE)"/>
    </xsl:template>

    <xsl:template match="RAYON">
        <xsl:value-of select="concat(.,  , @UNITE)"/>
    </xsl:template>
    
    <xsl:template match="JOUR">
        <xsl:value-of select="concat(.,  , @UNITE)"/>
    </xsl:template>
    
</xsl:stylesheet>
